home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1995 March / Macworld CD-ROM (March 1995).cdr / Updaters / AppMaker 1.5.2->1.5.4 / Libraries / THINK / AMClassLibC / CAMPopupMenu.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-24  |  742 b   |  31 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  CAMPopupMenu.h
  3.  
  4.         Interface for CAMPopupMenu.c
  5.         
  6.         Copyright © 1991 Bowers Development Corporation. All rights reserved.
  7.         
  8.  ******************************************************************************/
  9.  
  10. #pragma once
  11.  
  12. #include <CPopupMenu.h>
  13.  
  14. /*--------*/
  15. class CAMPopupMenu : public CPopupMenu {
  16. public:
  17.     void    IAMPopupMenu            (short            aMenuID, 
  18.                                      CBureaucrat    *aSupervisor,
  19.                                      Boolean        fAutoSelect,
  20.                                      Boolean        fMultiSelect,
  21.                                      short            aFontNum,
  22.                                      short            aFontSize);
  23.     long    PopupSelect                (Point             where, 
  24.                                      long            aCmd);            // is override
  25.  
  26. protected:
  27.     short    theFontNum;
  28.     short    theTextSize;
  29.  
  30. };    /* CAMPopupMenu */
  31.